SharePoint Pipelines Troubleshooting & FAQ
Common issues when connecting a SharePoint Pipeline and setting up its bring-your-own (BYO) Azure AD app.
Connection & sign-in
"AADSTS500113: No reply address is registered for the application"
Cause: Your Azure AD app has no Redirect URI registered. This trips people up because the Pipelines runtime (the folder-watch, file download, and signed-PDF write-back) uses app-only auth (client credentials), which needs no redirect URI. The folder picker in the pipeline wizard, however, signs you in interactively in the browser, and that flow does require one. If you followed the app-only setup only, the picker sign-in fails with AADSTS500113.
Solution:
- In the TurboDocx Connect SharePoint dialog, copy the Redirect URI it displays (it's your TurboDocx app origin, e.g.
https://app.turbodocx.com). Use the Copy button so you get it exactly. - Open the Azure portal → App registrations → your Pipelines app → Authentication.
- Click Add a platform → Single-page application (SPA) → paste the redirect URI → Configure.
- Return to TurboDocx and retry. The picker sign-in now succeeds.
Add the URI under Single-page application (SPA), not "Web". The picker uses MSAL in the browser (PKCE), which requires the SPA platform type. A "Web" platform will still fail.
The picker still won't sign you in after adding the redirect URI
Cause: The app is missing the delegated permission the interactive sign-in needs. The redirect URI gets you past AADSTS500113, but the browser sign-in also requires a delegated identity scope, typically User.Read, and often the delegated SharePoint read scopes for browsing.
Solution: Add the delegated permissions in the permissions list below (at minimum User.Read under Microsoft Graph, Delegated), then Grant admin consent and retry.